Create_Constructor.bsh - a BeanShell macro for the jEdit text editor that
creates a constructor containing the selected variables. This code has the
similar limitations as Get_Class_Name; it merely looks backwards for the nearest
occurance of the keyword 'class," etc.
Copyright (C) 2004 Thomas Galvin - software@thomas-galvin.com
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
//Localization
final static String UnevenNumberMessage = jEdit.getProperty("macro.rs.CreateConstructor.UnevenNumber.message", "Uneven number of type names and variables.");
final static String NotEditableMessage = jEdit.getProperty("macro.rs.general.ErrorNotEditableDialog.message", "Buffer is not editable");